from __future__ import print_function
from keras.models import Sequential, Model
from keras.layers.embeddings import Embedding
from keras.layers import Input, Activation, Dense, Permute, Dropout, add, dot,merge, concatenate
from keras.layers import LSTM
from keras.utils.data_utils import get_file
from keras.preprocessing.sequence import pad_sequences
from functools import reduce
import tarfile
import numpy as np
import re
/anaconda3/lib/python3.6/site-packages/h5py/__init__.py:36: FutureWarning: Conversion of the second argument of issubdtype from `float` to `np.floating` is deprecated. In future, it will be treated as `np.float64 == np.dtype(float).type`. from ._conv import register_converters as _register_converters Using TensorFlow backend.
def tokenize(sent):
'''Return the tokens of a sentence including punctuation.
>>> tokenize('Bob dropped the apple. Where is the apple?')
['Bob', 'dropped', 'the', 'apple', '.', 'Where', 'is', 'the', 'apple', '?']
'''
return [x.strip() for x in re.split('(\W+)?', sent) if x.strip()]
def parse_stories(lines, only_supporting=False):
'''Parse stories provided in the bAbi tasks format
If only_supporting is true, only the sentences
that support the answer are kept.
'''
data = []
story = []
for line in lines:
line = line.decode('utf-8').strip()
nid, line = line.split(' ', 1)
nid = int(nid)
if nid == 1:
story = []
if '\t' in line:
q, a, supporting = line.split('\t')
q = tokenize(q)
substory = None
if only_supporting:
# Only select the related substory
supporting = map(int, supporting.split())
substory = [story[i - 1] for i in supporting]
else:
# Provide all the substories
substory = [x for x in story if x]
data.append((substory, q, a))
story.append('')
else:
sent = tokenize(line)
story.append(sent)
#print(data)
return data
def get_stories(f, only_supporting=False, max_length=None):
'''Given a file name, read the file,
retrieve the stories,
and then convert the sentences into a single story.
If max_length is supplied,
any stories longer than max_length tokens will be discarded.
'''
data = parse_stories(f.readlines(), only_supporting=only_supporting)
flatten = lambda data: reduce(lambda x, y: x + y, data)
data = [(flatten(story), q, answer) for story, q, answer in data if not max_length or len(flatten(story)) < max_length]
return data
def vectorize_stories(data, word_idx, story_maxlen, query_maxlen):
X = []
Xq = []
Y = []
for story, query, answer in data:
x=[word_idx[w] for w in story]
xq=[word_idx[w] for w in query]
y=np.zeros(len(word_idx) + 1)
y[word_idx[answer]]=1
X.append(x)
Xq.append(xq)
Y.append(y)
return (pad_sequences(X, maxlen=story_maxlen),
pad_sequences(Xq, maxlen=query_maxlen),
np.array(Y))
try:
path = get_file('babi-tasks-v1-2.tar.gz', origin='https://s3.amazonaws.com/text-datasets/babi_tasks_1-20_v1-2.tar.gz')
except:
print('Error downloading dataset, please download it manually:\n'
'$ wget http://www.thespermwhale.com/jaseweston/babi/tasks_1-20_v1-2.tar.gz\n'
'$ mv tasks_1-20_v1-2.tar.gz ~/.keras/datasets/babi-tasks-v1-2.tar.gz')
raise
tar = tarfile.open(path)
challenges = {'qa2_two-supporting-facts': 'tasks_1-20_v1-2/en-10k/qa2_two-supporting-facts_{}.txt'}
challenge_type = 'qa2_two-supporting-facts'
challenge = challenges[challenge_type]
print('Extracting stories for the challenge:', challenge_type)
train_stories = get_stories(tar.extractfile(challenge.format('train')))
test_stories = get_stories(tar.extractfile(challenge.format('test')))
Extracting stories for the challenge: qa2_two-supporting-facts
/anaconda3/lib/python3.6/re.py:212: FutureWarning: split() requires a non-empty pattern match. return _compile(pattern, flags).split(string, maxsplit)
print(train_stories)
[(['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'left', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom')]
print(test_stories)
[(['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bathroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'garden'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bathroom'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'took', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'kitchen'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'bedroom'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'apple', '?'], 'office'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'football', '?'], 'office'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.'], ['Where', 'is', 'the', 'apple', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'kitchen'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bathroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'garden'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.'], ['Where', 'is', 'the', 'milk', '?'], 'office'), (['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'], ['Where', 'is', 'the', 'milk', '?'], 'bedroom'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'kitchen'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Where', 'is', 'the', 'apple', '?'], 'hallway'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway'), (['John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'], ['Where', 'is', 'the', 'football', '?'], 'hallway')]
vocab = set()
for story, q, answer in train_stories + test_stories:
print(story)
vocab |= set(story + q + [answer])
vocab = sorted(vocab)
# Reserve 0 for masking via pad_sequences
vocab_size = len(vocab) + 1
story_maxlen = max(map(len, (x for x, _, _ in train_stories + test_stories)))
query_maxlen = max(map(len, (x for _, x, _ in train_stories + test_stories)))
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'discarded', 'the', 'football', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', 'there', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', 'there', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'football', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'dropped', 'the', 'milk', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'discarded', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'left', 'the', 'football', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', 'there', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'milk', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'discarded', 'the', 'football', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'left', 'the', 'apple', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', 'there', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'left', 'the', 'milk', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'left', 'the', 'apple', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'dropped', 'the', 'football', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', 'there', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', 'there', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', 'there', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'discarded', 'the', 'apple', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'discarded', 'the', 'apple', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'discarded', 'the', 'apple', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'dropped', 'the', 'milk', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', 'there', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', 'there', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', 'there', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', 'there', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'left', 'the', 'milk', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', 'there', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'left', 'the', 'football', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'left', 'the', 'milk', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'discarded', 'the', 'apple', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', 'there', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'discarded', 'the', 'milk', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'left', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'discarded', 'the', 'apple', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'dropped', 'the', 'football', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'milk', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'left', 'the', 'football', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'left', 'the', 'milk', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'football', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'discarded', 'the', 'football', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'dropped', 'the', 'apple', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', 'there', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'milk', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'milk', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'discarded', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'left', 'the', 'apple', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'left', 'the', 'apple', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'left', 'the', 'milk', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', 'there', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'left', 'the', 'football', 'there', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'dropped', 'the', 'milk', 'there', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'discarded', 'the', 'apple', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'left', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'left', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['John', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'left', 'the', 'milk', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', 'there', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'left', 'the', 'milk', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'milk', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'discarded', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.'] ['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.'] ['John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'left', 'the', 'football', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'dropped', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'football', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'discarded', 'the', 'apple', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'left', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'left', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'apple', 'there', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'left', 'the', 'apple', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'John', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'football', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'dropped', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', 'there', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'football', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'left', 'the', 'milk', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'John', 'discarded', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'football', '.', 'John', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'milk', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'travelled', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'football', 'there', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Sandra', 'dropped', 'the', 'football', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'left', 'the', 'apple', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.'] ['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['Daniel', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'dropped', 'the', 'apple', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.'] ['Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'discarded', 'the', 'milk', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'John', 'discarded', 'the', 'milk', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'put', 'down', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.'] ['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'apple', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Daniel', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['John', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'put', 'down', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.'] ['Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'discarded', 'the', 'football', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.'] ['Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Daniel', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.'] ['Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'discarded', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.'] ['John', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'apple', 'there', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'football', 'there', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Daniel', 'got', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'put', 'down', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'left', 'the', 'football', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'] ['Sandra', 'went', 'to', 'the', 'hallway', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'dropped', 'the', 'apple', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', 'there', '.'] ['Mary', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'dropped', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', 'there', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.'] ['Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'John', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'John', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', 'there', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'took', 'the', 'milk', 'there', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'discarded', 'the', 'football', '.', 'John', 'got', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'moved', 'to', 'the', 'kitchen', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'dropped', 'the', 'apple', '.'] ['Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'John', 'dropped', 'the', 'apple', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.'] ['John', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'John', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'got', 'the', 'milk', 'there', '.', 'John', 'left', 'the', 'apple', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'dropped', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.'] ['Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.'] ['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Daniel', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Daniel', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'John', 'went', 'to', 'the', 'office', '.', 'John', 'left', 'the', 'apple', '.', 'John', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'] ['Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.'] ['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'left', 'the', 'football', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'took', 'the', 'football', 'there', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'dropped', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.'] ['Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'left', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'left', 'the', 'milk', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.'] ['John', 'grabbed', 'the', 'football', 'there', '.', 'John', 'discarded', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'travelled', 'to', 'the', 'bedroom', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'left', 'the', 'apple', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'left', 'the', 'milk', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Sandra', 'put', 'down', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'John', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'picked', 'up', 'the', 'apple', 'there', '.', 'John', 'put', 'down', 'the', 'apple', '.', 'Sandra', 'left', 'the', 'football', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'office', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'hallway', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.'] ['John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Daniel', 'put', 'down', 'the', 'apple', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.'] ['Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'milk', 'there', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'got', 'the', 'apple', 'there', '.', 'Sandra', 'left', 'the', 'milk', 'there', '.', 'Sandra', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Sandra', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Daniel', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'milk', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'moved', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'discarded', 'the', 'football', '.', 'Sandra', 'went', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'dropped', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', '.', 'Sandra', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'took', 'the', 'milk', 'there', '.'] ['John', 'got', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'garden', '.', 'Daniel', 'moved', 'to', 'the', 'garden', '.', 'Sandra', 'went', 'to', 'the', 'office', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'football', 'there', '.', 'Sandra', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'John', 'discarded', 'the', 'football', 'there', '.', 'John', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'Sandra', 'dropped', 'the', 'apple', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bathroom', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'John', 'discarded', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'got', 'the', 'football', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'bedroom', '.', 'Daniel', 'left', 'the', 'football', '.', 'Sandra', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'apple', 'there', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'] ['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'John', 'dropped', 'the', 'milk', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'John', 'picked', 'up', 'the', 'milk', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Sandra', 'grabbed', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'milk', '.', 'John', 'took', 'the', 'milk', 'there', '.', 'Sandra', 'discarded', 'the', 'football', '.', 'Sandra', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Sandra', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'John', 'moved', 'to', 'the', 'office', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.'] ['John', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Sandra', 'put', 'down', 'the', 'milk', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'journeyed', 'to', 'the', 'garden', '.', 'Sandra', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.'] ['Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Daniel', 'picked', 'up', 'the', 'apple', 'there', '.', 'Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'went', 'back', 'to', 'the', 'hallway', '.', 'Daniel', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Sandra', 'grabbed', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'Sandra', 'left', 'the', 'apple', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'hallway', '.', 'Daniel', 'took', 'the', 'apple', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'went', 'to', 'the', 'bedroom', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Daniel', 'dropped', 'the', 'apple', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.'] ['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Sandra', 'took', 'the', 'milk', 'there', '.', 'John', 'took', 'the', 'football', 'there', '.', 'John', 'moved', 'to', 'the', 'kitchen', '.', 'John', 'dropped', 'the', 'football', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'travelled', 'to', 'the', 'bathroom', '.', 'Sandra', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Sandra', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Daniel', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Sandra', 'moved', 'to', 'the', 'garden', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.'] ['Sandra', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Daniel', 'picked', 'up', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'John', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Daniel', 'put', 'down', 'the', 'football', '.', 'John', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Daniel', 'grabbed', 'the', 'milk', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Daniel', 'put', 'down', 'the', 'milk', 'there', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'John', 'travelled', 'to', 'the', 'office', '.', 'Sandra', 'went', 'to', 'the', 'hallway', '.', 'Sandra', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Daniel', 'discarded', 'the', 'milk', '.', 'Daniel', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'John', 'moved', 'to', 'the', 'bathroom', '.', 'John', 'went', 'back', 'to', 'the', 'hallway', '.', 'Sandra', 'journeyed', 'to', 'the', 'office', '.', 'Daniel', 'dropped', 'the', 'milk', '.', 'Daniel', 'picked', 'up', 'the', 'milk', 'there', '.', 'Daniel', 'moved', 'to', 'the', 'bedroom', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.'] ['John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
with open('story_maxlen_qa2_two-supporting-facts.txt','w') as file:
file.write(str(story_maxlen))
file.write('\n')
file.close()
with open('query_maxlen_qa2_two-supporting-facts.txt','w') as file:
file.write(str(query_maxlen))
file.write('\n')
file.close()
print('-')
print('Vocab size:', vocab_size, 'unique words')
print('Story max length:', story_maxlen, 'words')
print('Query max length:', query_maxlen, 'words')
print('Number of training stories:', len(train_stories))
print('Number of test stories:', len(test_stories))
print('-')
print('Here\'s what a "story" tuple looks like (input, query, answer):')
print(train_stories[0])
print('-')
print('Vectorizing the word sequences...')
word_idx = dict((c, i + 1) for i, c in enumerate(vocab))
idx_word = dict((i+1, c) for i,c in enumerate(vocab))
inputs_train, queries_train, answers_train = vectorize_stories(train_stories,
word_idx,
story_maxlen,
query_maxlen)
inputs_test, queries_test, answers_test = vectorize_stories(test_stories,
word_idx,
story_maxlen,
query_maxlen)
- Vocab size: 36 unique words Story max length: 552 words Query max length: 5 words Number of training stories: 10000 Number of test stories: 1000 - Here's what a "story" tuple looks like (input, query, answer): (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Sandra', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'John', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Where', 'is', 'the', 'football', '?'], 'garden') - Vectorizing the word sequences...
with open('word_idx_qa2_two-supporting-facts.txt','w') as file:
file.write(str(word_idx))
file.close()
with open('idx_word_qa2_two-supporting-facts.txt','w') as file:
file.write(str(idx_word))
file.close()
print(word_idx)
{'.': 1, '?': 2, 'Daniel': 3, 'John': 4, 'Mary': 5, 'Sandra': 6, 'Where': 7, 'apple': 8, 'back': 9, 'bathroom': 10, 'bedroom': 11, 'discarded': 12, 'down': 13, 'dropped': 14, 'football': 15, 'garden': 16, 'got': 17, 'grabbed': 18, 'hallway': 19, 'is': 20, 'journeyed': 21, 'kitchen': 22, 'left': 23, 'milk': 24, 'moved': 25, 'office': 26, 'picked': 27, 'put': 28, 'the': 29, 'there': 30, 'to': 31, 'took': 32, 'travelled': 33, 'up': 34, 'went': 35}
print(idx_word)
{1: '.', 2: '?', 3: 'Daniel', 4: 'John', 5: 'Mary', 6: 'Sandra', 7: 'Where', 8: 'apple', 9: 'back', 10: 'bathroom', 11: 'bedroom', 12: 'discarded', 13: 'down', 14: 'dropped', 15: 'football', 16: 'garden', 17: 'got', 18: 'grabbed', 19: 'hallway', 20: 'is', 21: 'journeyed', 22: 'kitchen', 23: 'left', 24: 'milk', 25: 'moved', 26: 'office', 27: 'picked', 28: 'put', 29: 'the', 30: 'there', 31: 'to', 32: 'took', 33: 'travelled', 34: 'up', 35: 'went'}
print('-')
print('inputs: integer tensor of shape (samples, max_length)')
print('inputs_train shape:', inputs_train.shape)
print('inputs_test shape:', inputs_test.shape)
print('-')
print('queries: integer tensor of shape (samples, max_length)')
print('queries_train shape:', queries_train.shape)
print('queries_test shape:', queries_test.shape)
print('-')
print('answers: binary (1 or 0) tensor of shape (samples, vocab_size)')
print('answers_train shape:', answers_train.shape)
print('answers_test shape:', answers_test.shape)
print('-')
print('Compiling...')
- inputs: integer tensor of shape (samples, max_length) inputs_train shape: (10000, 552) inputs_test shape: (1000, 552) - queries: integer tensor of shape (samples, max_length) queries_train shape: (10000, 5) queries_test shape: (1000, 5) - answers: binary (1 or 0) tensor of shape (samples, vocab_size) answers_train shape: (10000, 36) answers_test shape: (1000, 36) - Compiling...
train_epochs = 120
batch_size = 32
lstm_size = 64
# placeholders
input_sequence = Input((story_maxlen,))
question = Input((query_maxlen,))
print('Input sequence:', input_sequence)
print('Question:', question)
# encoders
# embed the input sequence into a sequence of vectors
input_encoder_m = Sequential()
input_encoder_m.add(Embedding(input_dim=vocab_size,
output_dim=64))
input_encoder_m.add(Dropout(0.3))
# output: (samples, story_maxlen, embedding_dim)
# embed the input into a sequence of vectors of size query_maxlen
input_encoder_c = Sequential()
input_encoder_c.add(Embedding(input_dim=vocab_size,
output_dim=query_maxlen))
input_encoder_c.add(Dropout(0.3))
# output: (samples, story_maxlen, query_maxlen)
# embed the question into a sequence of vectors
question_encoder = Sequential()
question_encoder.add(Embedding(input_dim=vocab_size,
output_dim=64,
input_length=query_maxlen))
question_encoder.add(Dropout(0.3))
# output: (samples, query_maxlen, embedding_dim)
# encode input sequence and questions (which are indices)
# to sequences of dense vectors
input_encoded_m = input_encoder_m(input_sequence)
print('Input encoded m', input_encoded_m)
input_encoded_c = input_encoder_c(input_sequence)
print('Input encoded c', input_encoded_c)
question_encoded = question_encoder(question)
print('Question encoded', question_encoded)
# compute a 'match' between the first input vector sequence
# and the question vector sequence
# shape: `(samples, story_maxlen, query_maxlen)
match = merge([input_encoded_m, question_encoded], mode='dot', dot_axes=(2, 2))
print(match.shape)
match = Activation('softmax')(match)
print('Match shape', match)
# add the match matrix with the second input vector sequence
response = merge([match, input_encoded_c], mode='sum') # (samples, story_maxlen, query_maxlen)
response = Permute((2, 1))(response) # (samples, query_maxlen, story_maxlen)
print('Response shape', response)
# concatenate the response vector with the question vector sequence
answer = merge([response, question_encoded], mode='concat')
print('Answer shape', answer)
#answer = LSTM(lstm_size, return_sequences=True)(answer) # Generate tensors of shape 32
#answer = Dropout(0.3)(answer)
answer = LSTM(64)(answer) # Generate tensors of shape 32
answer = Dropout(0.3)(answer)
answer = Dense(vocab_size)(answer) # (samples, vocab_size)
# we output a probability distribution over the vocabulary
answer = Activation('softmax')(answer)
Input sequence: Tensor("input_1:0", shape=(?, 552), dtype=float32)
Question: Tensor("input_2:0", shape=(?, 5), dtype=float32)
Input encoded m Tensor("sequential_1/dropout_1/cond/Merge:0", shape=(?, 552, 64), dtype=float32)
Input encoded c Tensor("sequential_2/dropout_2/cond/Merge:0", shape=(?, 552, 5), dtype=float32)
Question encoded Tensor("sequential_3/dropout_3/cond/Merge:0", shape=(?, 5, 64), dtype=float32)
(?, 552, 5)
Match shape Tensor("activation_1/truediv:0", shape=(?, 552, 5), dtype=float32)
Response shape Tensor("permute_1/transpose:0", shape=(?, 5, 552), dtype=float32)
Answer shape Tensor("merge_3/concat:0", shape=(?, 5, 616), dtype=float32)
/anaconda3/lib/python3.6/site-packages/ipykernel_launcher.py:44: UserWarning: The `merge` function is deprecated and will be removed after 08/2017. Use instead layers from `keras.layers.merge`, e.g. `add`, `concatenate`, etc. /anaconda3/lib/python3.6/site-packages/keras/legacy/layers.py:465: UserWarning: The `Merge` layer is deprecated and will be removed after 08/2017. Use instead layers from `keras.layers.merge`, e.g. `add`, `concatenate`, etc. name=name) /anaconda3/lib/python3.6/site-packages/ipykernel_launcher.py:50: UserWarning: The `merge` function is deprecated and will be removed after 08/2017. Use instead layers from `keras.layers.merge`, e.g. `add`, `concatenate`, etc. /anaconda3/lib/python3.6/site-packages/ipykernel_launcher.py:55: UserWarning: The `merge` function is deprecated and will be removed after 08/2017. Use instead layers from `keras.layers.merge`, e.g. `add`, `concatenate`, etc.
model = Model([input_sequence, question], answer)
model.compile(optimizer='rmsprop', loss='categorical_crossentropy',
metrics=['accuracy'])
model.fit([inputs_train, queries_train], answers_train, batch_size, train_epochs,
validation_data=([inputs_test, queries_test], answers_test))
Train on 10000 samples, validate on 1000 samples Epoch 1/120 10000/10000 [==============================] - 16s 2ms/step - loss: 1.9104 - acc: 0.1658 - val_loss: 1.7994 - val_acc: 0.1600 Epoch 2/120 10000/10000 [==============================] - 16s 2ms/step - loss: 1.8086 - acc: 0.1695 - val_loss: 1.7934 - val_acc: 0.1900 Epoch 3/120 10000/10000 [==============================] - 16s 2ms/step - loss: 1.7943 - acc: 0.1757 - val_loss: 1.7849 - val_acc: 0.1660 Epoch 4/120 10000/10000 [==============================] - 15s 2ms/step - loss: 1.7688 - acc: 0.2118 - val_loss: 1.7589 - val_acc: 0.2040 Epoch 5/120 10000/10000 [==============================] - 15s 2ms/step - loss: 1.7293 - acc: 0.2493 - val_loss: 1.6983 - val_acc: 0.2820 Epoch 6/120 10000/10000 [==============================] - 16s 2ms/step - loss: 1.6801 - acc: 0.2918 - val_loss: 1.6399 - val_acc: 0.3000 Epoch 7/120 10000/10000 [==============================] - 15s 2ms/step - loss: 1.6509 - acc: 0.3247 - val_loss: 1.6248 - val_acc: 0.3480 Epoch 8/120 10000/10000 [==============================] - 15s 2ms/step - loss: 1.6293 - acc: 0.3379 - val_loss: 1.6379 - val_acc: 0.3200 Epoch 9/120 10000/10000 [==============================] - 15s 2ms/step - loss: 1.6046 - acc: 0.3542 - val_loss: 1.5912 - val_acc: 0.3500 Epoch 10/120 10000/10000 [==============================] - 15s 2ms/step - loss: 1.5905 - acc: 0.3661 - val_loss: 1.5597 - val_acc: 0.3640 Epoch 11/120 10000/10000 [==============================] - 15s 2ms/step - loss: 1.5697 - acc: 0.3715 - val_loss: 1.6099 - val_acc: 0.3250 Epoch 12/120 10000/10000 [==============================] - 15s 2ms/step - loss: 1.5535 - acc: 0.3826 - val_loss: 1.5591 - val_acc: 0.3500 Epoch 13/120 10000/10000 [==============================] - 16s 2ms/step - loss: 1.5324 - acc: 0.3898 - val_loss: 1.5421 - val_acc: 0.3940 Epoch 14/120 10000/10000 [==============================] - 16s 2ms/step - loss: 1.5200 - acc: 0.3928 - val_loss: 1.5733 - val_acc: 0.3590 Epoch 15/120 10000/10000 [==============================] - 15s 2ms/step - loss: 1.5071 - acc: 0.4006 - val_loss: 1.5104 - val_acc: 0.3950 Epoch 16/120 10000/10000 [==============================] - 15s 2ms/step - loss: 1.4902 - acc: 0.4095 - val_loss: 1.5063 - val_acc: 0.3880 Epoch 17/120 10000/10000 [==============================] - 15s 2ms/step - loss: 1.4795 - acc: 0.4105 - val_loss: 1.5142 - val_acc: 0.3950 Epoch 18/120 10000/10000 [==============================] - 15s 2ms/step - loss: 1.4717 - acc: 0.4177 - val_loss: 1.5124 - val_acc: 0.3900 Epoch 19/120 10000/10000 [==============================] - 15s 2ms/step - loss: 1.4591 - acc: 0.4163 - val_loss: 1.5125 - val_acc: 0.4060 Epoch 20/120 10000/10000 [==============================] - 15s 2ms/step - loss: 1.4531 - acc: 0.4216 - val_loss: 1.5107 - val_acc: 0.4020 Epoch 21/120 10000/10000 [==============================] - 16s 2ms/step - loss: 1.4391 - acc: 0.4267 - val_loss: 1.5254 - val_acc: 0.3920 Epoch 22/120 10000/10000 [==============================] - 15s 2ms/step - loss: 1.4299 - acc: 0.4290 - val_loss: 1.5093 - val_acc: 0.4030 Epoch 23/120 10000/10000 [==============================] - 16s 2ms/step - loss: 1.4264 - acc: 0.4350 - val_loss: 1.5086 - val_acc: 0.3960 Epoch 24/120 10000/10000 [==============================] - 16s 2ms/step - loss: 1.4100 - acc: 0.4365 - val_loss: 1.5006 - val_acc: 0.3890 Epoch 25/120 10000/10000 [==============================] - 16s 2ms/step - loss: 1.4060 - acc: 0.4368 - val_loss: 1.5220 - val_acc: 0.3830 Epoch 26/120 10000/10000 [==============================] - 15s 2ms/step - loss: 1.3931 - acc: 0.4408 - val_loss: 1.5008 - val_acc: 0.3900 Epoch 27/120 10000/10000 [==============================] - 16s 2ms/step - loss: 1.3865 - acc: 0.4432 - val_loss: 1.4933 - val_acc: 0.4060 Epoch 28/120 10000/10000 [==============================] - 16s 2ms/step - loss: 1.3758 - acc: 0.4508 - val_loss: 1.5478 - val_acc: 0.3770 Epoch 29/120 10000/10000 [==============================] - 16s 2ms/step - loss: 1.3699 - acc: 0.4490 - val_loss: 1.5299 - val_acc: 0.3750 Epoch 30/120 10000/10000 [==============================] - 16s 2ms/step - loss: 1.3612 - acc: 0.4538 - val_loss: 1.5152 - val_acc: 0.3920 Epoch 31/120 10000/10000 [==============================] - 16s 2ms/step - loss: 1.3536 - acc: 0.4632 - val_loss: 1.5084 - val_acc: 0.3820 Epoch 32/120 10000/10000 [==============================] - 16s 2ms/step - loss: 1.3395 - acc: 0.4683 - val_loss: 1.5086 - val_acc: 0.3960 Epoch 33/120 10000/10000 [==============================] - 16s 2ms/step - loss: 1.3194 - acc: 0.4723 - val_loss: 1.5494 - val_acc: 0.3780 Epoch 34/120 10000/10000 [==============================] - 16s 2ms/step - loss: 1.3153 - acc: 0.4818 - val_loss: 1.5108 - val_acc: 0.3900 Epoch 35/120 10000/10000 [==============================] - 16s 2ms/step - loss: 1.3131 - acc: 0.4835 - val_loss: 1.5318 - val_acc: 0.3720 Epoch 36/120 10000/10000 [==============================] - 16s 2ms/step - loss: 1.2860 - acc: 0.4889 - val_loss: 1.5381 - val_acc: 0.4050 Epoch 37/120 10000/10000 [==============================] - 16s 2ms/step - loss: 1.2817 - acc: 0.4900 - val_loss: 1.5388 - val_acc: 0.3910 Epoch 38/120 10000/10000 [==============================] - 15s 2ms/step - loss: 1.2743 - acc: 0.5052 - val_loss: 1.5259 - val_acc: 0.4080 Epoch 39/120 10000/10000 [==============================] - 14s 1ms/step - loss: 1.2592 - acc: 0.5003 - val_loss: 1.5614 - val_acc: 0.3810 Epoch 40/120 10000/10000 [==============================] - 16s 2ms/step - loss: 1.2555 - acc: 0.4995 - val_loss: 1.5714 - val_acc: 0.3680 Epoch 41/120 10000/10000 [==============================] - 15s 2ms/step - loss: 1.2328 - acc: 0.5163 - val_loss: 1.5853 - val_acc: 0.3820 Epoch 42/120 10000/10000 [==============================] - 16s 2ms/step - loss: 1.2404 - acc: 0.5104 - val_loss: 1.5638 - val_acc: 0.3990 Epoch 43/120 10000/10000 [==============================] - 16s 2ms/step - loss: 1.2158 - acc: 0.5210 - val_loss: 1.5627 - val_acc: 0.3890 Epoch 44/120 10000/10000 [==============================] - 16s 2ms/step - loss: 1.2135 - acc: 0.5192 - val_loss: 1.5841 - val_acc: 0.3590 Epoch 45/120 10000/10000 [==============================] - 16s 2ms/step - loss: 1.2116 - acc: 0.5242 - val_loss: 1.5537 - val_acc: 0.3850 Epoch 46/120 10000/10000 [==============================] - 16s 2ms/step - loss: 1.1954 - acc: 0.5325 - val_loss: 1.5802 - val_acc: 0.3860 Epoch 47/120 10000/10000 [==============================] - 16s 2ms/step - loss: 1.1932 - acc: 0.5341 - val_loss: 1.5755 - val_acc: 0.3830 Epoch 48/120 10000/10000 [==============================] - 16s 2ms/step - loss: 1.1822 - acc: 0.5363 - val_loss: 1.6382 - val_acc: 0.3810 Epoch 49/120 10000/10000 [==============================] - 16s 2ms/step - loss: 1.1761 - acc: 0.5428 - val_loss: 1.6084 - val_acc: 0.3750 Epoch 50/120 10000/10000 [==============================] - 16s 2ms/step - loss: 1.1558 - acc: 0.5473 - val_loss: 1.5809 - val_acc: 0.3780 Epoch 51/120 10000/10000 [==============================] - 16s 2ms/step - loss: 1.1548 - acc: 0.5475 - val_loss: 1.6401 - val_acc: 0.3710 Epoch 52/120 10000/10000 [==============================] - 16s 2ms/step - loss: 1.1489 - acc: 0.5500 - val_loss: 1.5985 - val_acc: 0.3740 Epoch 53/120 10000/10000 [==============================] - 16s 2ms/step - loss: 1.1380 - acc: 0.5590 - val_loss: 1.6463 - val_acc: 0.3380 Epoch 54/120 10000/10000 [==============================] - 16s 2ms/step - loss: 1.1279 - acc: 0.5656 - val_loss: 1.6732 - val_acc: 0.3620 Epoch 55/120 10000/10000 [==============================] - 16s 2ms/step - loss: 1.1291 - acc: 0.5631 - val_loss: 1.6414 - val_acc: 0.3670 Epoch 56/120 10000/10000 [==============================] - 16s 2ms/step - loss: 1.1055 - acc: 0.5794 - val_loss: 1.6588 - val_acc: 0.3690 Epoch 57/120 10000/10000 [==============================] - 16s 2ms/step - loss: 1.0951 - acc: 0.5767 - val_loss: 1.6536 - val_acc: 0.3800 Epoch 58/120 10000/10000 [==============================] - 16s 2ms/step - loss: 1.0946 - acc: 0.5769 - val_loss: 1.6513 - val_acc: 0.3760 Epoch 59/120 10000/10000 [==============================] - 15s 2ms/step - loss: 1.0860 - acc: 0.5794 - val_loss: 1.7017 - val_acc: 0.3700 Epoch 60/120 10000/10000 [==============================] - 15s 2ms/step - loss: 1.0743 - acc: 0.5820 - val_loss: 1.7298 - val_acc: 0.3720 Epoch 61/120 10000/10000 [==============================] - 15s 1ms/step - loss: 1.0724 - acc: 0.5881 - val_loss: 1.7396 - val_acc: 0.3700 Epoch 62/120 10000/10000 [==============================] - 15s 1ms/step - loss: 1.0643 - acc: 0.5890 - val_loss: 1.6933 - val_acc: 0.3620 Epoch 63/120 10000/10000 [==============================] - 15s 1ms/step - loss: 1.0595 - acc: 0.5869 - val_loss: 1.7265 - val_acc: 0.3420 Epoch 64/120 10000/10000 [==============================] - 15s 1ms/step - loss: 1.0554 - acc: 0.5905 - val_loss: 1.7747 - val_acc: 0.3570 Epoch 65/120 10000/10000 [==============================] - 15s 1ms/step - loss: 1.0329 - acc: 0.5989 - val_loss: 1.7113 - val_acc: 0.3800 Epoch 66/120 10000/10000 [==============================] - 15s 1ms/step - loss: 1.0371 - acc: 0.6012 - val_loss: 1.7626 - val_acc: 0.3650 Epoch 67/120 10000/10000 [==============================] - 15s 1ms/step - loss: 1.0235 - acc: 0.6112 - val_loss: 1.7590 - val_acc: 0.3680 Epoch 68/120 10000/10000 [==============================] - 15s 2ms/step - loss: 1.0195 - acc: 0.6121 - val_loss: 1.7296 - val_acc: 0.3500 Epoch 69/120 10000/10000 [==============================] - 15s 1ms/step - loss: 1.0198 - acc: 0.6091 - val_loss: 1.7395 - val_acc: 0.3570 Epoch 70/120 10000/10000 [==============================] - 15s 1ms/step - loss: 1.0100 - acc: 0.6129 - val_loss: 1.7499 - val_acc: 0.3690 Epoch 71/120 10000/10000 [==============================] - 15s 1ms/step - loss: 0.9994 - acc: 0.6187 - val_loss: 1.7890 - val_acc: 0.3530 Epoch 72/120 10000/10000 [==============================] - 15s 1ms/step - loss: 0.9927 - acc: 0.6245 - val_loss: 1.8027 - val_acc: 0.3680 Epoch 73/120 10000/10000 [==============================] - 15s 2ms/step - loss: 0.9937 - acc: 0.6205 - val_loss: 1.7525 - val_acc: 0.3460 Epoch 74/120 10000/10000 [==============================] - 15s 1ms/step - loss: 0.9782 - acc: 0.6203 - val_loss: 1.7925 - val_acc: 0.3630 Epoch 75/120 10000/10000 [==============================] - 14s 1ms/step - loss: 0.9881 - acc: 0.6198 - val_loss: 1.7414 - val_acc: 0.3640 Epoch 76/120 10000/10000 [==============================] - 13s 1ms/step - loss: 0.9783 - acc: 0.6273 - val_loss: 1.8196 - val_acc: 0.3520 Epoch 77/120 10000/10000 [==============================] - 14s 1ms/step - loss: 0.9689 - acc: 0.6244 - val_loss: 1.7731 - val_acc: 0.3550 Epoch 78/120 10000/10000 [==============================] - 15s 1ms/step - loss: 0.9565 - acc: 0.6343 - val_loss: 1.7394 - val_acc: 0.3480 Epoch 79/120 10000/10000 [==============================] - 15s 1ms/step - loss: 0.9546 - acc: 0.6347 - val_loss: 1.8063 - val_acc: 0.3750 Epoch 80/120 10000/10000 [==============================] - 15s 1ms/step - loss: 0.9514 - acc: 0.6382 - val_loss: 1.7703 - val_acc: 0.3570 Epoch 81/120 10000/10000 [==============================] - 15s 1ms/step - loss: 0.9492 - acc: 0.6384 - val_loss: 1.7428 - val_acc: 0.3480 Epoch 82/120 10000/10000 [==============================] - 15s 1ms/step - loss: 0.9561 - acc: 0.6371 - val_loss: 1.8101 - val_acc: 0.3580 Epoch 83/120 10000/10000 [==============================] - 15s 1ms/step - loss: 0.9365 - acc: 0.6422 - val_loss: 1.7501 - val_acc: 0.3580 Epoch 84/120 10000/10000 [==============================] - 15s 2ms/step - loss: 0.9382 - acc: 0.6406 - val_loss: 1.8693 - val_acc: 0.3440 Epoch 85/120 10000/10000 [==============================] - 15s 1ms/step - loss: 0.9366 - acc: 0.6406 - val_loss: 1.8296 - val_acc: 0.3530 Epoch 86/120 10000/10000 [==============================] - 15s 1ms/step - loss: 0.9104 - acc: 0.6481 - val_loss: 1.8561 - val_acc: 0.3700 Epoch 87/120 10000/10000 [==============================] - 15s 1ms/step - loss: 0.9206 - acc: 0.6448 - val_loss: 1.8612 - val_acc: 0.3680 Epoch 88/120 10000/10000 [==============================] - 15s 1ms/step - loss: 0.9027 - acc: 0.6544 - val_loss: 1.8020 - val_acc: 0.3630 Epoch 89/120 10000/10000 [==============================] - 15s 1ms/step - loss: 0.9036 - acc: 0.6572 - val_loss: 1.8657 - val_acc: 0.3640 Epoch 90/120 10000/10000 [==============================] - 15s 1ms/step - loss: 0.9005 - acc: 0.6518 - val_loss: 1.9081 - val_acc: 0.3710 Epoch 91/120 10000/10000 [==============================] - 15s 1ms/step - loss: 0.8885 - acc: 0.6560 - val_loss: 1.8428 - val_acc: 0.3510 Epoch 92/120 10000/10000 [==============================] - 15s 2ms/step - loss: 0.8919 - acc: 0.6597 - val_loss: 1.8311 - val_acc: 0.3520 Epoch 93/120 10000/10000 [==============================] - 15s 1ms/step - loss: 0.8773 - acc: 0.6622 - val_loss: 1.8140 - val_acc: 0.3580 Epoch 94/120 10000/10000 [==============================] - 15s 1ms/step - loss: 0.8760 - acc: 0.6703 - val_loss: 1.8387 - val_acc: 0.3540 Epoch 95/120 10000/10000 [==============================] - 15s 1ms/step - loss: 0.8732 - acc: 0.6658 - val_loss: 1.8976 - val_acc: 0.3490 Epoch 96/120 10000/10000 [==============================] - 15s 2ms/step - loss: 0.8672 - acc: 0.6688 - val_loss: 1.8057 - val_acc: 0.3460 Epoch 97/120 10000/10000 [==============================] - 15s 1ms/step - loss: 0.8597 - acc: 0.6764 - val_loss: 1.8876 - val_acc: 0.3630 Epoch 98/120 10000/10000 [==============================] - 15s 1ms/step - loss: 0.8604 - acc: 0.6649 - val_loss: 1.9010 - val_acc: 0.3410 Epoch 99/120 10000/10000 [==============================] - 15s 2ms/step - loss: 0.8616 - acc: 0.6759 - val_loss: 1.9608 - val_acc: 0.3450 Epoch 100/120 10000/10000 [==============================] - 16s 2ms/step - loss: 0.8427 - acc: 0.6806 - val_loss: 2.0012 - val_acc: 0.3510 Epoch 101/120 10000/10000 [==============================] - 15s 1ms/step - loss: 0.8435 - acc: 0.6764 - val_loss: 1.9081 - val_acc: 0.3610 Epoch 102/120 10000/10000 [==============================] - 15s 2ms/step - loss: 0.8355 - acc: 0.6805 - val_loss: 1.9795 - val_acc: 0.3530 Epoch 103/120 10000/10000 [==============================] - 15s 2ms/step - loss: 0.8331 - acc: 0.6828 - val_loss: 2.0095 - val_acc: 0.3430 Epoch 104/120 10000/10000 [==============================] - 15s 2ms/step - loss: 0.8368 - acc: 0.6796 - val_loss: 1.9443 - val_acc: 0.3410 Epoch 105/120 10000/10000 [==============================] - 15s 1ms/step - loss: 0.8124 - acc: 0.6921 - val_loss: 2.0455 - val_acc: 0.3610 Epoch 106/120 10000/10000 [==============================] - 15s 2ms/step - loss: 0.8150 - acc: 0.6891 - val_loss: 2.0936 - val_acc: 0.3260 Epoch 107/120 10000/10000 [==============================] - 15s 2ms/step - loss: 0.8195 - acc: 0.6917 - val_loss: 1.8770 - val_acc: 0.3620 Epoch 108/120 10000/10000 [==============================] - 16s 2ms/step - loss: 0.8046 - acc: 0.6893 - val_loss: 2.0119 - val_acc: 0.3570 Epoch 109/120 10000/10000 [==============================] - 15s 2ms/step - loss: 0.8126 - acc: 0.6933 - val_loss: 1.8993 - val_acc: 0.3600 Epoch 110/120 10000/10000 [==============================] - 15s 2ms/step - loss: 0.8087 - acc: 0.6925 - val_loss: 2.0167 - val_acc: 0.3490 Epoch 111/120 10000/10000 [==============================] - 15s 2ms/step - loss: 0.7924 - acc: 0.6992 - val_loss: 1.9361 - val_acc: 0.3580 Epoch 112/120 10000/10000 [==============================] - 15s 2ms/step - loss: 0.7833 - acc: 0.7041 - val_loss: 2.1018 - val_acc: 0.3580 Epoch 113/120 10000/10000 [==============================] - 16s 2ms/step - loss: 0.7889 - acc: 0.6995 - val_loss: 2.1385 - val_acc: 0.3490 Epoch 114/120 10000/10000 [==============================] - 15s 2ms/step - loss: 0.7827 - acc: 0.7081 - val_loss: 1.9777 - val_acc: 0.3590 Epoch 115/120 10000/10000 [==============================] - 15s 2ms/step - loss: 0.7799 - acc: 0.7062 - val_loss: 2.0556 - val_acc: 0.3680 Epoch 116/120 10000/10000 [==============================] - 16s 2ms/step - loss: 0.7794 - acc: 0.7072 - val_loss: 2.1997 - val_acc: 0.3490 Epoch 117/120 10000/10000 [==============================] - 15s 2ms/step - loss: 0.7698 - acc: 0.7023 - val_loss: 2.1311 - val_acc: 0.3290 Epoch 118/120 10000/10000 [==============================] - 15s 1ms/step - loss: 0.7596 - acc: 0.7117 - val_loss: 1.9954 - val_acc: 0.3310 Epoch 119/120 10000/10000 [==============================] - 15s 1ms/step - loss: 0.7654 - acc: 0.7134 - val_loss: 2.0166 - val_acc: 0.3270 Epoch 120/120 10000/10000 [==============================] - 15s 1ms/step - loss: 0.7583 - acc: 0.7127 - val_loss: 2.0847 - val_acc: 0.3500
<keras.callbacks.History at 0x1205e2048>
for i in range(0,10):
current_inp = test_stories[i]
current_story, current_query, current_answer = vectorize_stories([current_inp], word_idx, story_maxlen, query_maxlen)
current_prediction = model.predict([current_story, current_query])
current_prediction = idx_word[np.argmax(current_prediction)]
print(' '.join(current_inp[0]), ' '.join(current_inp[1]), '| Prediction:', current_prediction, '| Ground Truth:', current_inp[2])
print("-----------------------------------------------------------------------------------------")
Mary got the milk there . John moved to the bedroom . Sandra went back to the kitchen . Mary travelled to the hallway . Where is the milk ? | Prediction: hallway | Ground Truth: hallway ----------------------------------------------------------------------------------------- Mary got the milk there . John moved to the bedroom . Sandra went back to the kitchen . Mary travelled to the hallway . John got the football there . John went to the hallway . Where is the football ? | Prediction: hallway | Ground Truth: hallway ----------------------------------------------------------------------------------------- Mary got the milk there . John moved to the bedroom . Sandra went back to the kitchen . Mary travelled to the hallway . John got the football there . John went to the hallway . John put down the football . Mary went to the garden . Where is the football ? | Prediction: kitchen | Ground Truth: hallway ----------------------------------------------------------------------------------------- Mary got the milk there . John moved to the bedroom . Sandra went back to the kitchen . Mary travelled to the hallway . John got the football there . John went to the hallway . John put down the football . Mary went to the garden . John went to the kitchen . Sandra travelled to the hallway . Where is the football ? | Prediction: hallway | Ground Truth: hallway ----------------------------------------------------------------------------------------- Mary got the milk there . John moved to the bedroom . Sandra went back to the kitchen . Mary travelled to the hallway . John got the football there . John went to the hallway . John put down the football . Mary went to the garden . John went to the kitchen . Sandra travelled to the hallway . Daniel went to the hallway . Mary discarded the milk . Where is the milk ? | Prediction: garden | Ground Truth: garden ----------------------------------------------------------------------------------------- Mary journeyed to the bathroom . Sandra went to the garden . Daniel went back to the garden . Daniel went to the office . Sandra grabbed the milk there . Sandra put down the milk there . Where is the milk ? | Prediction: garden | Ground Truth: garden ----------------------------------------------------------------------------------------- Mary journeyed to the bathroom . Sandra went to the garden . Daniel went back to the garden . Daniel went to the office . Sandra grabbed the milk there . Sandra put down the milk there . Daniel went to the hallway . Sandra got the milk there . Daniel went to the garden . Daniel journeyed to the kitchen . Daniel journeyed to the bedroom . Mary journeyed to the garden . Daniel took the football there . Mary moved to the office . Sandra travelled to the bedroom . Daniel dropped the football . Where is the football ? | Prediction: bedroom | Ground Truth: bedroom ----------------------------------------------------------------------------------------- Mary journeyed to the bathroom . Sandra went to the garden . Daniel went back to the garden . Daniel went to the office . Sandra grabbed the milk there . Sandra put down the milk there . Daniel went to the hallway . Sandra got the milk there . Daniel went to the garden . Daniel journeyed to the kitchen . Daniel journeyed to the bedroom . Mary journeyed to the garden . Daniel took the football there . Mary moved to the office . Sandra travelled to the bedroom . Daniel dropped the football . Sandra left the milk there . Daniel grabbed the football there . Where is the milk ? | Prediction: bedroom | Ground Truth: bedroom ----------------------------------------------------------------------------------------- Mary journeyed to the bathroom . Sandra went to the garden . Daniel went back to the garden . Daniel went to the office . Sandra grabbed the milk there . Sandra put down the milk there . Daniel went to the hallway . Sandra got the milk there . Daniel went to the garden . Daniel journeyed to the kitchen . Daniel journeyed to the bedroom . Mary journeyed to the garden . Daniel took the football there . Mary moved to the office . Sandra travelled to the bedroom . Daniel dropped the football . Sandra left the milk there . Daniel grabbed the football there . Sandra grabbed the milk there . Daniel went to the kitchen . Where is the football ? | Prediction: bedroom | Ground Truth: kitchen ----------------------------------------------------------------------------------------- Mary journeyed to the bathroom . Sandra went to the garden . Daniel went back to the garden . Daniel went to the office . Sandra grabbed the milk there . Sandra put down the milk there . Daniel went to the hallway . Sandra got the milk there . Daniel went to the garden . Daniel journeyed to the kitchen . Daniel journeyed to the bedroom . Mary journeyed to the garden . Daniel took the football there . Mary moved to the office . Sandra travelled to the bedroom . Daniel dropped the football . Sandra left the milk there . Daniel grabbed the football there . Sandra grabbed the milk there . Daniel went to the kitchen . John travelled to the kitchen . Mary moved to the hallway . Where is the football ? | Prediction: hallway | Ground Truth: kitchen -----------------------------------------------------------------------------------------
print(story)
['John', 'took', 'the', 'football', 'there', '.', 'John', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Sandra', 'got', 'the', 'football', 'there', '.', 'Daniel', 'journeyed', 'to', 'the', 'kitchen', '.', 'John', 'journeyed', 'to', 'the', 'bedroom', '.', 'Sandra', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Daniel', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Daniel', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Sandra', 'picked', 'up', 'the', 'football', 'there', '.', 'Sandra', 'left', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Daniel', 'got', 'the', 'apple', 'there', '.', 'Daniel', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'John', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'John', 'went', 'back', 'to', 'the', 'office', '.']
from keras.models import model_from_json
model_json = model.to_json()
with open("model_qa2_two-supporting-facts.json", "w") as json_file:
json_file.write(model_json)
# serialize weights to HDF5
model.save_weights("model_qa2_two-supporting-facts.h5")
print("Saved model to disk")
Saved model to disk
json_file = open('model_qa2_two-supporting-facts.json', 'r')
loaded_model_json = json_file.read()
json_file.close()
loaded_model = model_from_json(loaded_model_json)
# load weights into new model
loaded_model.load_weights("model_qa2_two-supporting-facts.h5")
/anaconda3/lib/python3.6/site-packages/keras/engine/topology.py:1271: UserWarning: The `Merge` layer is deprecated and will be removed after 08/2017. Use instead layers from `keras.layers.merge`, e.g. `add`, `concatenate`, etc. return cls(**config)
test_stories[0]
(['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway')
loaded_model.compile(optimizer='rmsprop', loss='categorical_crossentropy',
metrics=['accuracy'])
for i in range(0,10):
current_inp = test_stories[i]
current_story, current_query, current_answer = vectorize_stories([current_inp], word_idx, story_maxlen, query_maxlen)
current_prediction = loaded_model.predict([current_story, current_query])
current_prediction = idx_word[np.argmax(current_prediction)]
print(' '.join(current_inp[0]), ' '.join(current_inp[1]), '| Prediction:', current_prediction, '| Ground Truth:', current_inp[2])
print("-----------------------------------------------------------------------------------------")
Mary got the milk there . John moved to the bedroom . Sandra went back to the kitchen . Mary travelled to the hallway . Where is the milk ? | Prediction: hallway | Ground Truth: hallway ----------------------------------------------------------------------------------------- Mary got the milk there . John moved to the bedroom . Sandra went back to the kitchen . Mary travelled to the hallway . John got the football there . John went to the hallway . Where is the football ? | Prediction: hallway | Ground Truth: hallway ----------------------------------------------------------------------------------------- Mary got the milk there . John moved to the bedroom . Sandra went back to the kitchen . Mary travelled to the hallway . John got the football there . John went to the hallway . John put down the football . Mary went to the garden . Where is the football ? | Prediction: kitchen | Ground Truth: hallway ----------------------------------------------------------------------------------------- Mary got the milk there . John moved to the bedroom . Sandra went back to the kitchen . Mary travelled to the hallway . John got the football there . John went to the hallway . John put down the football . Mary went to the garden . John went to the kitchen . Sandra travelled to the hallway . Where is the football ? | Prediction: hallway | Ground Truth: hallway ----------------------------------------------------------------------------------------- Mary got the milk there . John moved to the bedroom . Sandra went back to the kitchen . Mary travelled to the hallway . John got the football there . John went to the hallway . John put down the football . Mary went to the garden . John went to the kitchen . Sandra travelled to the hallway . Daniel went to the hallway . Mary discarded the milk . Where is the milk ? | Prediction: garden | Ground Truth: garden ----------------------------------------------------------------------------------------- Mary journeyed to the bathroom . Sandra went to the garden . Daniel went back to the garden . Daniel went to the office . Sandra grabbed the milk there . Sandra put down the milk there . Where is the milk ? | Prediction: garden | Ground Truth: garden ----------------------------------------------------------------------------------------- Mary journeyed to the bathroom . Sandra went to the garden . Daniel went back to the garden . Daniel went to the office . Sandra grabbed the milk there . Sandra put down the milk there . Daniel went to the hallway . Sandra got the milk there . Daniel went to the garden . Daniel journeyed to the kitchen . Daniel journeyed to the bedroom . Mary journeyed to the garden . Daniel took the football there . Mary moved to the office . Sandra travelled to the bedroom . Daniel dropped the football . Where is the football ? | Prediction: bedroom | Ground Truth: bedroom ----------------------------------------------------------------------------------------- Mary journeyed to the bathroom . Sandra went to the garden . Daniel went back to the garden . Daniel went to the office . Sandra grabbed the milk there . Sandra put down the milk there . Daniel went to the hallway . Sandra got the milk there . Daniel went to the garden . Daniel journeyed to the kitchen . Daniel journeyed to the bedroom . Mary journeyed to the garden . Daniel took the football there . Mary moved to the office . Sandra travelled to the bedroom . Daniel dropped the football . Sandra left the milk there . Daniel grabbed the football there . Where is the milk ? | Prediction: bedroom | Ground Truth: bedroom ----------------------------------------------------------------------------------------- Mary journeyed to the bathroom . Sandra went to the garden . Daniel went back to the garden . Daniel went to the office . Sandra grabbed the milk there . Sandra put down the milk there . Daniel went to the hallway . Sandra got the milk there . Daniel went to the garden . Daniel journeyed to the kitchen . Daniel journeyed to the bedroom . Mary journeyed to the garden . Daniel took the football there . Mary moved to the office . Sandra travelled to the bedroom . Daniel dropped the football . Sandra left the milk there . Daniel grabbed the football there . Sandra grabbed the milk there . Daniel went to the kitchen . Where is the football ? | Prediction: bedroom | Ground Truth: kitchen ----------------------------------------------------------------------------------------- Mary journeyed to the bathroom . Sandra went to the garden . Daniel went back to the garden . Daniel went to the office . Sandra grabbed the milk there . Sandra put down the milk there . Daniel went to the hallway . Sandra got the milk there . Daniel went to the garden . Daniel journeyed to the kitchen . Daniel journeyed to the bedroom . Mary journeyed to the garden . Daniel took the football there . Mary moved to the office . Sandra travelled to the bedroom . Daniel dropped the football . Sandra left the milk there . Daniel grabbed the football there . Sandra grabbed the milk there . Daniel went to the kitchen . John travelled to the kitchen . Mary moved to the hallway . Where is the football ? | Prediction: hallway | Ground Truth: kitchen -----------------------------------------------------------------------------------------
print(current_story)
[[ 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 21 31 29 10 1 6 35 31 29 16 1 3 35 9 31 29 16 1 3 35 31 29 26 1 6 18 29 24 30 1 6 28 13 29 24 30 1 3 35 31 29 19 1 6 17 29 24 30 1 3 35 31 29 16 1 3 21 31 29 22 1 3 21 31 29 11 1 5 21 31 29 16 1 3 32 29 15 30 1 5 25 31 29 26 1 6 33 31 29 11 1 3 14 29 15 1 6 23 29 24 30 1 3 18 29 15 30 1 6 18 29 24 30 1 3 35 31 29 22 1 4 33 31 29 22 1 5 25 31 29 19 1]]
print(current_query)
[[ 7 20 29 15 2]]
print(len(current_query))
1
print(test_stories[0])
(['Mary', 'got', 'the', 'milk', 'there', '.', 'John', 'moved', 'to', 'the', 'bedroom', '.', 'Sandra', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Where', 'is', 'the', 'milk', '?'], 'hallway')